home *** CD-ROM | disk | FTP | other *** search
/ CD School House 10 / CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso / mac / DOS / MISC / DOSUTL21 / FMT.BAT < prev    next >
DOS Batch File  |  1994-05-16  |  301b  |  17 lines

  1. @echo off
  2. if "%1"=="x" goto noformcmd
  3. if "%1"=="X" goto noformcmd
  4. format %1 %FORMCMD% %2 %3 %4 %5 %6 %7 %8 %9
  5. if errorlevel 1 goto error
  6. goto end
  7. :noformcmd
  8. shift
  9. format %1 %2 %3 %4 %5 %6 %7 %8 %9
  10. if errorlevel 1 goto error
  11. goto end
  12. :error
  13. echo The disk could not be formatted!
  14. :end
  15.  
  16.  
  17.